home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / convrtrs / fixiff.lha / FixIFF / Source / Include_FixIff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-14  |  422 b   |  29 lines

  1. #include "Exec/types.h"
  2. #include "fcntl.h"
  3. #include "graphics/view.h"
  4.  
  5. struct BitMapHeader        /* BMHD chunk for ILBM files */
  6. {
  7.     ULONG pad1; 
  8.     UWORD w,h;
  9.     WORD  x,y;
  10.     UBYTE nPlanes;
  11.     UBYTE masking;
  12.     UBYTE compression;
  13.     UBYTE pad2;
  14.     UWORD transparentColor;
  15.     UBYTE xAspect,yAspect;
  16.     WORD  pageWidth,pageHeight;
  17. };
  18.  
  19. struct CAMGHeader
  20. {
  21.     ULONG pad1;
  22.     ULONG ViewMode;
  23. };
  24.  
  25. #define LO 1
  26. #define HI 2
  27. #define INT 1
  28. #define NONINT 2
  29.